home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / ingres04.lzh / source / h / resp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1985-01-23  |  438 b   |  20 lines

  1. /*
  2. **  RESP.H -- response blocks
  3. **
  4. **    Version:
  5. **        @(#)resp.h    8.1    12/31/84
  6. */
  7.  
  8. struct resp
  9. {
  10.     short    resp_resp;    /* the function value */
  11.     char    resp_active;    /* > 0 if in use */
  12.     long    resp_time;    /* elapsed time */
  13.     long    resp_tups;    /* count of tuples touched */
  14.     long    resp_pread;    /* pages read */
  15.     long    resp_pwrit;    /* pages written */
  16.     /* PARM    resp_rval;    /* the module return value */
  17. };
  18.  
  19. extern struct resp    Resp;    /* the current response */
  20.